net/http.http2dataBuffer.chunks (field)

17 uses

	net/http (current package)
		h2_bundle.go#L1257: 	chunks   [][]byte
		h2_bundle.go#L1281: 		if b.r == len(b.chunks[0]) {
		h2_bundle.go#L1282: 			http2putDataBufferChunk(b.chunks[0])
		h2_bundle.go#L1283: 			end := len(b.chunks) - 1
		h2_bundle.go#L1284: 			copy(b.chunks[:end], b.chunks[1:])
		h2_bundle.go#L1285: 			b.chunks[end] = nil
		h2_bundle.go#L1286: 			b.chunks = b.chunks[:end]
		h2_bundle.go#L1294: 	if len(b.chunks) == 1 {
		h2_bundle.go#L1295: 		return b.chunks[0][b.r:b.w]
		h2_bundle.go#L1297: 	return b.chunks[0][b.r:]
		h2_bundle.go#L1327: 	if len(b.chunks) != 0 {
		h2_bundle.go#L1328: 		last := b.chunks[len(b.chunks)-1]
		h2_bundle.go#L1334: 	b.chunks = append(b.chunks, chunk)